home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BDTOTAB.PAK / RESOURCE.H < prev   
C/C++ Source or Header  |  1997-05-06  |  788b  |  30 lines

  1. // resource.h
  2. //............................................................................
  3. #ifndef RESOURCE_H
  4. #define RESOURCE_H
  5.  
  6. //............................................................................
  7. // String table constants
  8.  
  9. #define IDS_MAINTITLE    100
  10.  
  11. //............................................................................
  12. // Menu constants
  13.  
  14. #define IDM_MAIN            1
  15.  
  16. #define IDM_NAV_FIRST        1
  17. #define IDM_NAV_PRIORSET    2
  18. #define IDM_NAV_PRIOR        3
  19. #define IDM_NAV_NEXT            4
  20. #define IDM_NAV_NEXTSET        5
  21. #define IDM_NAV_LAST            6
  22.  
  23. //............................................................................
  24. // Icon constants
  25.  
  26. #define IDI_MAIN        1
  27.  
  28. //............................................................................
  29. #endif // RESOURCE_H
  30.